unsubscribe
Title: unsubscribe unsubscribe - Beuserie Frederic DSI / Système et Exploitation - 3 Suisses Belgique Tel: +3269/882485 / Fax: +3269/882491 Email: [EMAIL PROTECTED]
upgrade the make utility
I am upgrading the make utility from 3.74 to 3.79. I get the following error when I compile the program. It look like I need some header file, could some tell me what they are and where I can get these files. it-resort:/usr/src/make-3.79# make make all-recursive make[1]: Entering directory `/usr/src/make-3.79' Making all in glob make[2]: Entering directory `/usr/src/make-3.79/glob' gcc -DHAVE_CONFIG_H -I. -I. -I.. -g -O2 -c glob.c In file included from glob.c:32: /usr/include/errno.h:27: linux/errno.h: No such file or directory In file included from glob.c:33: /usr/include/sys/types.h:4: linux/types.h: No such file or directory In file included from glob.c:34: /usr/include/sys/stat.h:8: linux/stat.h: No such file or directory In file included from glob.c:91: /usr/include/dirent.h:36: linux/limits.h: No such file or directory /usr/include/dirent.h:37: linux/dirent.h: No such file or directory In file included from /usr/include/dirent.h:94, from glob.c:91: /usr/include/posix1_lim.h:72: linux/limits.h: No such file or director make[2]: *** [glob.o] Error 1 make[2]: Leaving directory `/usr/src/make-3.79/glob' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/usr/src/make-3.79' make: *** [all-recursive-am] Error 2 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
JNI and Threads
Hi, I'm building a mutli thread C application using JNI and Invocation API to load Java Virtual Machine and call Java code. To launch a new thread I used the call: pthread_create Now that I link JNI, whit which call have I to substitute "pthread_create"? That is, how can I launch a new thread with JNI? (I already substituted calls to pthread_mutex_lock and pthread_mutex_unlock with (*envP)->MonitorEnter and (*envP)->MonitorExit) Thanks for help == Valerio FerrucciTabasoft Sas [EMAIL PROTECTED] http://tabasoft.ancitel.it [EMAIL PROTECTED] -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
JSP & Servlet Translators, Handling memory leaks
<<0>>-<>-<>-<>-<<0>> developerWorks Internationalization Theme The focus this month at developerWorks is Internationalization. The theme page highlights many of the challenges you face and problem-solving tools available to you. Get the information you need to develop programs that can be exchanged internationally, forming the foundation for global software. If you're looking for a fast and free route to a better grasp of Unicode or internationalization tools in general, this page is the place to start. http://www-106.ibm.com/developerworks/theme/?open&l=jlbd,t=gr,p=Internationalization <<0>>-<>-<>-<>-<<0>> Build better Web sites using the Translator pattern This article gives an introduction to the Translator pattern and describes how to use the Translator pattern in a JSP technology and servlet environment. After reading this article, you will be able to successfully implement the pattern using the code examples provided. Using the Translator pattern to convert input Strings http://www-106.ibm.com/developerworks/library/j-jsppatt/?open&l=jlbd,t=gr,p=JSP-Translators <<0>>-<>-<>-<>-<<0>> Handling memory leaks in Java programs Memory leaks in Java programs? Absolutely. Contrary to popular belief, memory management is still a consideration in Java programming. In this article, you'll learn what causes Java memory leaks and when these leaks should be of concern. You'll also get a quick hands-on lesson for tackling leaks in your own projects. Find out when memory leaks are a concern and how to prevent them http://www-106.ibm.com/developerworks/library/j-leaks/?open&l=jlbd,t=gr,p=Fix-Leaks <<0>>-<>-<>-<>-<<0>> More Java developer resources from the Japan Components zone The developerWorks Japan Components Zone has great Java development resources written in Japanese. You can find these articles along with 30 others written in Japanese. - Components make the banking world go 'round - The whys and why nots of Java accessors - Accessors increase robustness of Java code - Java accessor visibility - Effective field visibility in Java programs dW Japan Java Zone - developer content written in Japanese http://www.alphaworks.ibm.com/aw.nsf/html/dW-Japan-Components?open&l=jlbd,t=gr,p=Japan-Components <<0>>-<>-<>-<>-<<0>> -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: upgrade the make utility
On Thu, 22 Feb 2001, Le, Paul wrote: > I am upgrading the make utility from 3.74 to 3.79. I get the following error > when I compile the program. It look like I need some header file, could some > tell me what they are and where I can get these files. > > > it-resort:/usr/src/make-3.79# make > make all-recursive > make[1]: Entering directory `/usr/src/make-3.79' > Making all in glob > make[2]: Entering directory `/usr/src/make-3.79/glob' > gcc -DHAVE_CONFIG_H -I. -I. -I.. -g -O2 -c glob.c > In file included from glob.c:32: > /usr/include/errno.h:27: linux/errno.h: No such file or directory > In file included from glob.c:33: > /usr/include/sys/types.h:4: linux/types.h: No such file or directory > In file included from glob.c:34: > /usr/include/sys/stat.h:8: linux/stat.h: No such file or directory > In file included from glob.c:91: > /usr/include/dirent.h:36: linux/limits.h: No such file or directory > /usr/include/dirent.h:37: linux/dirent.h: No such file or directory > In file included from /usr/include/dirent.h:94, > from glob.c:91: On Red Hat, linux/errno.h, linux/types.h, etc are provided by package kernel-headers-2.2.16-3 Files in /usr/include/bits/*.h, many in /usr/include, etc are provided by package glibc-devel-2.1.3-22 These are often not installed by default, or upgraded by default. Make sure your system has the equivalents for your distribution and kernel. $ uname -a Linux joi 2.2.16-3 #1 Mon Jun 19 19:11:44 EDT 2000 i686 unknown -- Joi EllisSoftware Engineer Aravox Technologies [EMAIL PROTECTED], [EMAIL PROTECTED] No matter what we think of Linux versus FreeBSD, etc., the one thing I really like about Linux is that it has Microsoft worried. Anything that kicks a monopoly in the pants has got to be good for something. - Chris Johnson -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]