Changeset 1642
- Timestamp:
- Jul 17, 2012, 11:31:49 PM (10 years ago)
- Location:
- trunk
- Files:
-
- 36 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.ac
r1563 r1642 60 60 AC_CHECK_HEADERS(linux/kdev_t.h linux/major.h) 61 61 AC_CHECK_HEADERS(security/pam_appl.h security/pam_misc.h) 62 AC_CHECK_HEADERS(pam/pam_appl.h pam/pam_misc.h) 62 63 63 64 if test "${enable_debug}" = "yes"; then -
trunk/tools/neercs/Makefile.am
r1638 r1642 7 7 neercs.cpp neercs.h \ 8 8 \ 9 $(old_sources) \ 10 \ 9 11 video/render.cpp video/render.h \ 10 12 video/text-render.cpp video/text-render.h \ … … 13 15 video/remanency.lolfx video/glow.lolfx video/postfx.lolfx video/radial.lolfx \ 14 16 video/text.lolfx 15 neercs_CPPFLAGS = @LOL_CFLAGS@ @PIPI_CFLAGS@ @CACA_CFLAGS@ 17 neercs_CPPFLAGS = @LOL_CFLAGS@ @PIPI_CFLAGS@ @CACA_CFLAGS@ -Iold 16 18 neercs_LDADD = 17 19 neercs_LDFLAGS = $(top_builddir)/src/liblol.a \ … … 32 34 $(LOLFX_BUILD) 33 35 36 old_sources = \ 37 old/actions.c \ 38 old/ansi.c \ 39 old/attach.c \ 40 old/client.c \ 41 old/configuration.c \ 42 old/effects.c \ 43 old/grab.c \ 44 old/help.c \ 45 old/input.c \ 46 old/lock.c \ 47 old/main.c \ 48 old/mygetopt.c \ 49 old/mygetopt.h \ 50 old/mytrace.c \ 51 old/mytrace.h \ 52 old/neercs.h \ 53 old/python/interpreter.c \ 54 old/python/py_module.c \ 55 old/python/py_module.h \ 56 old/recurrent.c \ 57 old/screen_list.c \ 58 old/screensaver.c \ 59 old/screens.c \ 60 old/server.c \ 61 old/term.c \ 62 old/widgets.c \ 63 old/widgets.h \ 64 old/wm.c -
trunk/tools/neercs/neercs.cpp
r1638 r1642 44 44 #include "video/render.h" 45 45 46 Neercs::Neercs() 46 extern "C" 47 { 48 #include "old/neercs.h" 49 } 50 51 Neercs::Neercs(int argc, char **argv) 47 52 : m_ready(false), 48 53 m_caca(caca_create_canvas(10, 10)), … … 141 146 #endif 142 147 143 new Neercs( );148 new Neercs(argc, argv); 144 149 new DebugFps(2, 2); 145 150 app.ShowPointer(false); -
trunk/tools/neercs/neercs.h
r1602 r1642 15 15 { 16 16 public: 17 Neercs( );17 Neercs(int argc, char **argv); 18 18 virtual ~Neercs(); 19 19
Note: See TracChangeset
for help on using the changeset viewer.