VirtualBox

Changeset 45204 in vbox for trunk


Ignore:
Timestamp:
Mar 27, 2013 11:19:00 AM (12 years ago)
Author:
vboxsync
Message:

Linux hosts: added support for Ubuntu 13.04

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure

    r44580 r45204  
    16751675  cat $ODIR.tmp_src.c >> $LOG
    16761676  echo "using the following command line:" >> $LOG
    1677   echo "$CC -O -Wall -o $ODIR.tmp_out $ODIR.tmp_src.c -nostdinc -I$LINUX/include" >> $LOG
     1677  echo "$CC -O -Wall -o $ODIR.tmp_out $ODIR.tmp_src.c -nostdinc -I$LINUX/include " \
     1678      "-I$LINUX/include/generated/uapi" >> $LOG
    16781679  $CC -O -Wall -o $ODIR.tmp_out $ODIR.tmp_src.c -nostdinc -I$LINUX/include \
    16791680      -I$LINUX/include/generated/uapi >> $LOG 2>&1
     
    18911892  for p in $PYTHONDIR; do
    18921893    for d in $SUPPYTHONLIBS; do
    1893       for b in lib64 lib/64 lib; do
     1894      for b in lib/x86_64-linux-gnu lib/i386-linux-gnu lib64 lib/64 lib; do
    18941895        echo "compiling the following source file:" >> $LOG
    18951896        cat $ODIR.tmp_src.cc >> $LOG
  • trunk/src/VBox/Installer/linux/distributions_deb

    r43225 r45204  
    55_Debian_etch     = DEBIAN_4_0
    66_Debian_sarge    = DEBIAN_3_1
     7_Ubuntu_raring   = UBUNTU_13_04
    78_Ubuntu_quantal  = UBUNTU_12_10
    89_Ubuntu_precise  = UBUNTU_12_04
  • trunk/src/libs/xpcom18a4/python/gen_python_deps.py

    r43105 r45204  
    2424        return None
    2525
    26     lib = os.path.join(p, "lib", dllpre+"python"+v+dllsuff)
     26    lib = os.path.join(p, "lib/i386-linux-gnu", dllpre+"python"+v+dllsuff)
     27    if not os.path.isfile(lib):
     28        lib = os.path.join(p, "lib", dllpre+"python"+v+dllsuff)
    2729
    2830    if bitness_magic == 1:
    2931        lib64 = os.path.join(p, "lib", "64", dllpre+"python"+v+dllsuff)
    3032    elif bitness_magic == 2:
    31         lib64 = os.path.join(p, "lib64", dllpre+"python"+v+dllsuff)
    32         if not os.path.isfile(lib64):
    33             lib64 = lib
     33        lib64 = os.path.join(p, "lib/x86_64-linux-gnu", dllpre+"python"+v+dllsuff)
     34        if not os.path.isfile(lib64):
     35            lib64 = os.path.join(p, "lib64", dllpre+"python"+v+dllsuff)
     36            if not os.path.isfile(lib64):
     37                lib64 = lib
    3438    else:
    3539        lib64 = None
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette