Changeset 3905
- Timestamp:
- Nov 16, 2009, 2:15:25 AM (11 years ago)
- Location:
- libcaca/trunk
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/caca/Makefile.am
r3904 r3905 21 21 caca_internals.h \ 22 22 caca_debug.h \ 23 caca_prof.h \ 23 24 caca_stubs.h \ 24 25 caca_conio.c \ -
libcaca/trunk/caca/caca_internals.h
r3904 r3905 18 18 #include "caca_stubs.h" 19 19 #include "caca_debug.h" 20 #include "caca_prof.h" 20 21 21 22 typedef struct caca_timer caca_timer_t; -
libcaca/trunk/caca/libcaca.vcproj
r3904 r3905 414 414 </File> 415 415 <File 416 RelativePath="caca_prof.h" 417 > 418 </File> 419 <File 416 420 RelativePath="caca_stubs.h" 417 421 > -
libcaca/trunk/configure.ac
r3599 r3905 93 93 AC_ARG_ENABLE(debug, 94 94 [ --enable-debug build debug versions of the library (default no)]) 95 AC_ARG_ENABLE(prof, 96 [ --enable-prof activate built-in profiling (default no)]) 95 97 AC_ARG_ENABLE(plugins, 96 98 [ --enable-plugins make X11 and GL drivers plugins (default disabled)]) … … 322 324 fi 323 325 326 if test "${enable_prof}" = "yes"; then 327 AC_DEFINE(PROF, 1, Define to 1 to activate profiling) 328 fi 329 324 330 if test "${enable_plugins}" = "yes"; then 325 331 ac_cv_my_have_plugins="yes"
Note: See TracChangeset
for help on using the changeset viewer.