- Timestamp:
- Dec 11, 2009, 10:25:13 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.ac
r973 r975 210 210 plplot_found=skip; 211 211 ], [ dnl 212 echo $with_plplot 213 test -d "$with_plplot" && echo bajs 212 214 AS_IF([test -d $with_plplot], [], 213 215 [AC_MSG_ERROR([$with_plplot: no such directory])]) … … 236 238 # copy flags if we have found pc file 237 239 AS_IF([test "$use_plplot_pc" = "yes"], [ 238 YAT_CPP_ADD_FLAG([PLPLOT_CPPFLAGS], [`$PKG_CONFIG plplotd-c++ --cflags`])239 240 YAT_LD_ADD_FLAG([PLPLOT_LDFLAGS], [`$PKG_CONFIG plplotd-c++ --libs-only-L`]) 240 241 PLPLOT_LIBS="`$PKG_CONFIG plplotd-c++ --libs-only-l --libs-only-other`" … … 243 244 PLPLOT_LIBS="-lplplotcxxd -lplplotd"; 244 245 AS_IF([test -n "$with_plplot" && test "x$with_plplot" != "xyes"], [ 245 YAT_CPP_ADD_FLAG([PLPLOT_CPPFLAGS], [$with_plplot/include])246 246 YAT_LD_ADD_FLAG([PLPLOT_LDFLAGS], [$with_plplot/libs]) 247 247 ]) 248 ]) 249 # don't use `pkg-config --cflags' because it returns 250 # `PREFIX/include/plplot' rather than `PREFIX/include' 251 AS_IF([test -n "$with_plplot" && test "x$with_plplot" != "xyes"], [ 252 YAT_CPP_ADD_FLAG([PLPLOT_CPPFLAGS], [$with_plplot/include]) 248 253 ]) 249 254 ])
Note: See TracChangeset
for help on using the changeset viewer.