diff options
author | Matt Turner <[email protected]> | 2012-09-05 20:41:08 -0700 |
---|---|---|
committer | Andreas Boll <[email protected]> | 2013-01-10 22:01:31 +0100 |
commit | 3ed95dc0735795087c063288e544359a84f7ea28 (patch) | |
tree | 268d2c2f0adeef9891b1b88de53b220068e6bddf /configure.ac | |
parent | f1d229ee94e25957dd6902ca11dad07b973ec45a (diff) |
Remove MESA_PIC_FLAGS macro
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac index a9e57c820c2..1b2083df5e9 100644 --- a/configure.ac +++ b/configure.ac @@ -493,9 +493,6 @@ if test "x$enable_asm" = xyes; then fi AC_SUBST([MESA_ASM_FILES]) -dnl PIC code macro -MESA_PIC_FLAGS - dnl Check to see if dlopen is in default libraries (like Solaris, which dnl has it in libc), or if libdl is needed to get it. AC_CHECK_FUNC([dlopen], [DEFINES="$DEFINES -DHAVE_DLOPEN"], @@ -2230,9 +2227,9 @@ echo " Shared-glapi: $enable_shared_glapi" dnl Compiler options # cleanup the CFLAGS/CXXFLAGS/DEFINES vars -cflags=`echo $CFLAGS $PIC_FLAGS | \ +cflags=`echo $CFLAGS | \ $SED 's/^ *//;s/ */ /;s/ *$//'` -cxxflags=`echo $CXXFLAGS $PIC_FLAGS | \ +cxxflags=`echo $CXXFLAGS | \ $SED 's/^ *//;s/ */ /;s/ *$//'` defines=`echo $DEFINES | $SED 's/^ *//;s/ */ /;s/ *$//'` echo "" |