[DEVELOPMENTE ENVIRONMENT]
* BUG: A "=" character was missing in the menu file generated by the Debian/Ubuntu packager. [INTERPRETER] * BUG: Fix two incorrect optional function declarations. git-svn-id: svn://localhost/gambas/trunk@3286 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
parent
61e2103bb6
commit
453236f17f
2 changed files with 3 additions and 3 deletions
|
@ -557,7 +557,7 @@ Private Function MakeDebPackage(sSys As String)
|
|||
'debian/menu
|
||||
If Not Project.CreateComponent Then
|
||||
hFile = Open sPackagePath &/ "debian/menu" For Create
|
||||
Print #hFile, "?package("; $sPackageName; "):needs=\""; IIf(IsConsoleProject(), "text", "X11"); "\" section \""; Project.Menus[sSys]; "\"\\"
|
||||
Print #hFile, "?package("; $sPackageName; "):needs=\""; IIf(IsConsoleProject(), "text", "X11"); "\" section=\""; Project.Menus[sSys]; "\"\\"
|
||||
Print #hFile, "title=\""; IIf(Project.Title <> "", Project.Title, Project.Name); "\"\\"
|
||||
Print #hFile, "command=\"/usr/bin/"; $sPackageName; ".gambas\"\\"
|
||||
Print #hFile, "icon=\"/usr/share/pixmaps/"; sIcon; "\""
|
||||
|
|
|
@ -63,11 +63,11 @@ long double fabsl(long double x);
|
|||
#endif
|
||||
|
||||
#ifndef HAVE_POWL
|
||||
long double powl(long double x);
|
||||
long double powl(long double x, long double y);
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_MODFL
|
||||
long double modfl(long double x);
|
||||
long double modfl(long double x, long double *iptr);
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue