Diff of /trunk/configure.in

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

revision 170 by harbaum, Mon Nov 9 20:16:38 2009 UTC revision 229 by harbaum, Fri Dec 4 19:58:26 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.14],[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])
176       CFLAGS="$CFLAGS -DENABLE_MAEMO_MAPPER"       CFLAGS="$CFLAGS -DENABLE_MAEMO_MAPPER"
177       EXTRA_OBJS="$EXTRA_OBJS mm_poi.o"       EXTRA_OBJS="$EXTRA_OBJS mm_poi.o"
# Line 189  XB-Maemo-Icon-26: Line 189  XB-Maemo-Icon-26:
189    
190    # generate base64 icon, remove first and last line    # generate base64 icon, remove first and last line
191    # and add a space before each line    # and add a space before each line
192    ICON="$ICON`uuencode -m data/$ICONNAME $ICONNAME | sed '1d;$d;s/^/ /' -`"    ICON="$ICON`uuencode -m data/icons/$ICONNAME $ICONNAME | sed '1d;$d;s/^/ /' -`"
193    
194  ], [  ], [
195    AC_MSG_RESULT(no)    AC_MSG_RESULT(no)

Legend:
Removed from v.170  
changed lines
  Added in v.229