1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
Index: debian/control.in
===================================================================
--- debian/control.in (revision 10906)
+++ debian/control.in (working copy)
@@ -1,5 +1,5 @@
Source: amsn
-Section: x11
+Section: user/x11
Priority: optional
Maintainer: Theodore Karkoulis <bilbo@debian.org>
Build-Depends: debhelper (>> 4.0.0), tcl#TCL_VERSION#-dev, tk#TK_VERSION#-dev, libpng12-dev, libjpeg62-dev
Index: configure.ac
===================================================================
--- configure.ac (revision 10906)
+++ configure.ac (working copy)
@@ -357,7 +357,7 @@
dnl do some OS specific stuff here
dnl Check for libstdc++
-AC_CHECK_LIB(stdc++,main,CXX_LIB="-lstdc++", AC_MSG_ERROR(stdc++ library not found) )
+#AC_CHECK_LIB(stdc++,main,CXX_LIB="-lstdc++", AC_MSG_ERROR(stdc++ library not found) )
AC_SUBST(CXX_LIB)
AC_SUBST(LDLIBS)
Index: amsn
===================================================================
--- amsn (revision 10906)
+++ amsn (working copy)
@@ -1,6 +1,5 @@
-#!/bin/sh
-# \
-exec wish $0 $@
+#!/usr/bin/wish
+#
###
###
Index: utils/linux/capture/capture.c
===================================================================
--- utils/linux/capture/capture.c (revision 10906)
+++ utils/linux/capture/capture.c (working copy)
@@ -1032,6 +1032,8 @@
ng_debug = 0;
# endif
ng_init();
+
+ yuv2rgb_init();
// End of Initialisation
return TCL_OK;
|