Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(558)

Side by Side Diff: configure.ac

Issue 6659006: flimflam: add support for multiple profiles (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/flimflam.git@master
Patch Set: more ers comments Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Makefile.am ('k') | doc/manager-api.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 AC_PREREQ(2.60) 1 AC_PREREQ(2.60)
2 AC_INIT(connman, 0.42) 2 AC_INIT(connman, 0.42)
3 3
4 AM_INIT_AUTOMAKE([foreign subdir-objects]) 4 AM_INIT_AUTOMAKE([foreign subdir-objects])
5 AM_CONFIG_HEADER(config.h) 5 AM_CONFIG_HEADER(config.h)
6 6
7 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) 7 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
8 8
9 AM_MAINTAINER_MODE 9 AM_MAINTAINER_MODE
10 10
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after
368 fi 368 fi
369 AC_SUBST(UDEV_CFLAGS) 369 AC_SUBST(UDEV_CFLAGS)
370 AC_SUBST(UDEV_LIBS) 370 AC_SUBST(UDEV_LIBS)
371 AM_CONDITIONAL(UDEV, test "${enable_udev}" = "yes") 371 AM_CONDITIONAL(UDEV, test "${enable_udev}" = "yes")
372 372
373 AC_ARG_ENABLE(datafiles, AC_HELP_STRING([--disable-datafiles], 373 AC_ARG_ENABLE(datafiles, AC_HELP_STRING([--disable-datafiles],
374 [don't install configuration and data files]), 374 [don't install configuration and data files]),
375 [enable_datafiles=${enableval}]) 375 [enable_datafiles=${enableval}])
376 AM_CONDITIONAL(DATAFILES, test "${enable_datafiles}" != "no") 376 AM_CONDITIONAL(DATAFILES, test "${enable_datafiles}" != "no")
377 377
378 AC_ARG_WITH(homedir, AC_HELP_STRING([--with-homedir=PATH],
379 [path to user home directory]), [path_homedir=${withval}],
380 [path_homedir="/home/%s/user"])
381 if (test -z "${path_homedir}"); then
382 STORAGE_HOMEDIR="/home/%s/user/flimflam"
383 else
384 STORAGE_HOMEDIR="${path_homedir}/flimflam"
385 fi
386 AC_SUBST(STORAGE_HOMEDIR)
387
378 AC_OUTPUT(Makefile include/version.h src/flimflam.service 388 AC_OUTPUT(Makefile include/version.h src/flimflam.service
379 scripts/flimflam doc/version.xml flimflam.pc) 389 scripts/flimflam doc/version.xml flimflam.pc)
OLDNEW
« no previous file with comments | « Makefile.am ('k') | doc/manager-api.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698