diff options
author | Trevor Johnson <trevor@FreeBSD.org> | 2002-06-10 12:52:37 +0000 |
---|---|---|
committer | Trevor Johnson <trevor@FreeBSD.org> | 2002-06-10 12:52:37 +0000 |
commit | 414123cc76b40aeff60d353c66fc883aa3dcdabe (patch) | |
tree | a247940f2036bee2a082742f711f6dffa6f15227 /astro/openuniverse | |
parent | b5ec73ddc884a75994f8f997bd21c2788b958189 (diff) |
Markus Bäurle sent me a nice report about the configure script
failing. In his config.log I noticed a pthreads problem:
/usr/X11R6/lib/libMesaGL.so: undefined reference to `pthread_getspecific'
/usr/X11R6/lib/libMesaGL.so: undefined reference to `pthread_key_create'
/usr/X11R6/lib/libMesaGL.so: undefined reference to `pthread_setspecific'
I was not able to reproduce the problem, so I asked him to test
this patch, but have not seen a response. However, it causes no
trouble for me.
Notes
Notes:
svn path=/head/; revision=61046
Diffstat (limited to 'astro/openuniverse')
-rw-r--r-- | astro/openuniverse/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/astro/openuniverse/Makefile b/astro/openuniverse/Makefile index 4b61a0dcdc10..99a3d59ee36d 100644 --- a/astro/openuniverse/Makefile +++ b/astro/openuniverse/Makefile @@ -24,7 +24,8 @@ CONFIGURE_ARGS= --includedir="${LOCALBASE}/include" \ CONFIGURE_ENV= CPPFLAGS="-I${X11BASE}/include -I${X11BASE}/include/GL -I${LOCALBASE}/include" \ LDFLAGS="-L${X11BASE}/lib -L${LOCALBASE}/lib -lm" \ - LIBS="-lcompat" + LIBS="-lcompat" PTHREAD_LIBS="${PTHREAD_LIBS}" +MAKE_ENV= PTHREAD_LIBS="${PTHREAD_LIBS}" USE_X_PREFIX= yes |