Diff of /trunk/configure.in

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 157 by harbaum, Tue Nov 3 20:20:39 2009 UTC revision 233 by harbaum, Wed Dec 9 19:45:36 2009 UTC
# Line 21  Line 21 
21  # along with GPXView.  If not, see <http://www.gnu.org/licenses/>.  # along with GPXView.  If not, see <http://www.gnu.org/licenses/>.
22    
23  AC_PREREQ(2.61)  AC_PREREQ(2.61)
24  AC_INIT([GPXView],[0.8.12],[till@harbaum.org])  AC_INIT([GPXView],[0.9.0],[till@harbaum.org])
25  AC_CONFIG_SRCDIR([src/main.c])  AC_CONFIG_SRCDIR([src/main.c])
26  # AC_CONFIG_HEADER([src/config.h])  # AC_CONFIG_HEADER([src/config.h])
27    
# Line 168  PKG_CHECK_EXISTS(maemo-version, [ Line 168  PKG_CHECK_EXISTS(maemo-version, [
168    # fremantle uses icons of 48x48 pixels for the app installer,    # fremantle uses icons of 48x48 pixels for the app installer,
169    # older versions used 26x26    # older versions used 26x26
170    if [[ "$MAJOR" == "5" ]]; then    if [[ "$MAJOR" == "5" ]]; then
171       ICONNAME=gpxview.48.png       ICONNAME=48x48/gpxview.png
172       datarootdir=/opt       datarootdir=/opt
173    else    else
174       ICONNAME=gpxview.26.png       ICONNAME=26x26/gpxview.png
175       AC_MSG_NOTICE([Enabling Maemo Mapper support])       AC_MSG_NOTICE([Enabling Maemo Mapper support])
      CFLAGS="$CFLAGS -DENABLE_MAEMO_MAPPER"  
      EXTRA_OBJS="$EXTRA_OBJS mm_poi.o"  
176    fi    fi
177    
178      CFLAGS="$CFLAGS -DENABLE_MAEMO_MAPPER"
179      EXTRA_OBJS="$EXTRA_OBJS mm_poi.o"
180    
181    # maemo uses dbus for ipc with maemo mapper    # maemo uses dbus for ipc with maemo mapper
182    EXTRA_OBJS="$EXTRA_OBJS dbus.o"    EXTRA_OBJS="$EXTRA_OBJS dbus.o"
183    
# Line 189  XB-Maemo-Icon-26: Line 190  XB-Maemo-Icon-26:
190    
191    # generate base64 icon, remove first and last line    # generate base64 icon, remove first and last line
192    # and add a space before each line    # and add a space before each line
193    ICON="$ICON`uuencode -m data/$ICONNAME $ICONNAME | sed '1d;$d;s/^/ /' -`"    ICON="$ICON`uuencode -m data/icons/$ICONNAME $ICONNAME | sed '1d;$d;s/^/ /' -`"
194    
195  ], [  ], [
196    AC_MSG_RESULT(no)    AC_MSG_RESULT(no)

Legend:
Removed from v.157  
changed lines
  Added in v.233